home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ RIVA 128 1.xpl < prev    next >
Text File  |  2000-08-07  |  2KB  |  55 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="Hardware\Video Cards\NVidia\Riva 128"
  5. "NAME"="Heap Size"
  6. "VERSION"="1.04"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Heap Size (MB)"
  9. "DESCRIPTION 1"="Some options for your Riva 128 3D card." 
  10. "DESCRIPTION 2"="If you have more than 64 MB of RAM this might boost your performance. Values range from 1 to 16 MB."
  11. "DESCRIPTION 3"="The more devoted RAM, the better the performance of your RIVA.
  12. "DESCRIPTION 4"="NOTE: Please use the NVidia reference drivers from http://www.nvidia.com with this plug-in as it may not work properly with third party drivers such as Creative Labs, Hercules, etc.  This plug-in is designed for use with the NVidia reference drivers."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Thanks to CptSiskoX!"
  18.  
  19.  
  20. sPC="HKLM\SOFTWARE\NVIDIA Corporation\OpenGL\"
  21. sV1="HKLM\SOFTWARE\NVIDIA Corporation\OpenGL\MaxPCITexHeapSize" 'DW 1 -16
  22. Sub Plugin_Initialize 
  23. if RegPathExists(sPC) then
  24.    i=RegReadValue(sV1)
  25.    SetUiElement 1,i
  26. else
  27.    Call Disable()
  28. end if   
  29. End Sub
  30.  
  31.  
  32. Sub Plugin_CheckData(ElementIndex)
  33. End Sub
  34.  
  35.  
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  i=GetUIElement(1)
  39.  if i>0 and i<17 then
  40.     Call RegWriteValue(sV1,i,2)
  41.     Call Restart()
  42.  else
  43.     Call MsgError("Please enter a value between 1 and 16")
  44.  end if
  45.  
  46.  
  47. End Sub
  48.  
  49.  
  50. Sub Plugin_Terminate 
  51. End Sub
  52.  
  53.  
  54.  
  55.